home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- // FILENAME: MailToUI.h
- // SUMMARY: Interface for a UI for setting address and subject
- // SUPERCLASS: Object
- // INTERFACE: MailToUI.nib
- // PROTOCOLS: <Inspectable>
- // AUTHOR: Rohit Khare and Tom Zavisca
- // COPYRIGHT: (c) 1994 California Institure of Technology, eText Project
- ///////////////////////////////////////////////////////////////////////////////
- // DESCRIPTION
- // Just maintains two lousy fields.
- ///////////////////////////////////////////////////////////////////////////////
- // HISTORY
- // 07/04/94: Minimal Creation.
- ///////////////////////////////////////////////////////////////////////////////
-
- #import "MailTo.h"
- #import "../eTImage.subproj/eTImageUI.h"
-
- @interface MailToUI:eTImageUI <Inspectable>
- { id mailToPanel;
- id mailToView;
- id addressField;
- id subjectField;
- id theMailTo;
- }
-
- + new;
- - setAnnotation:sender;
- - changeAddress:sender;
- - changeSubject:sender;
- @end